/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background-color: #f4f4f4;
}

h1,
h2 {
  color: #333;
}

/* Estilos para las cajas */
.box {
  width: 200px;
  height: 100px;
  margin: 10px;
  padding: 20px;
  color: white;
  text-align: center;
  border-radius: 5px;
}

.box1 {
  background-color: #4caf50;
}

.box2 {
  background-color: #f44336;
  display: none;
}

.box3 {
  background-color: #2196f3;
}

.box4 {
  background-color: #ffc107;
  visibility: hidden;
}

/* Estilos para la tabla */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.collapse {
  visibility: collapse;
}
